Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow empty string in @:command("", "foo", "bar") #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

grepsuzette
Copy link

@grepsuzette grepsuzette commented Aug 22, 2020

This PR allows empty string in @:command("", "foo", "bar") function xx() {} to be developed to the function name (responding to "xx" in addition to "foo" and to "bar").

Multiple entries in @:command("foo", "bar") public function xx() {} already allow to give aliases but in that case no xx command is generated.

Consider:

@:command('slc', 'superlongcommandboringthehell') function superlongcommandboringthehell() {...}
// VS
@:command('slc', '') function superlongcommandboringthehell()  {...}

Which are then equivalent.
Hope it makes sense ;)

…unction name

For instance:

@:command('slc', '') function superlongcommandthatisboringthehell() ...

VS

@:command('slc', 'superlongcommandthatisboringthehell') ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant